home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / cool / ge_cool.lha / GE_COOL2.1 / src / shared / Makefile
Makefile  |  1992-07-14  |  752b  |  42 lines

  1. #
  2. # Copyright (C) 1992 General Electric Company.
  3. #
  4. # Permission is granted to any individual or institution to use, copy, modify,
  5. # and distribute this software, provided that this complete copyright and
  6. # permission notice is maintained, intact, in all copies and supporting
  7. # documentation.
  8. #
  9. # General Electric Company,
  10. # provides this software "as is" without express or implied warranty.
  11. #
  12.  
  13. include ../../Makedefs
  14. include ../Makedefs
  15.  
  16. all: libCOOL.so
  17.  
  18. libCOOL.so: 
  19.     - $(LD) $(LDFLAGS) -o $(LIBPRE)$(LIBNAME).so.1.0 *.o
  20.     - $(MV) $(LIBPRE)$(LIBNAME).so.1.0 $(LIBDIR)
  21.  
  22. allclean: clean
  23. clean:
  24.     -$(RM) *.o $(BACKUPS)
  25.  
  26. #empty rules:
  27.  
  28. alllink: link
  29. link:
  30.  
  31. alldepend: depend
  32. depend:
  33.  
  34. cleanalltests: cleantests
  35. cleantests:
  36.  
  37. allinstall: install
  38. install:
  39.  
  40.  
  41.  
  42.